home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
pluginy Firefox
/
51741
/
51741.xpi
/
chrome
/
content
/
lib
/
datesTimes.js
< prev
next >
Wrap
Text File
|
2010-02-01
|
324b
|
15 lines
(function()
{
// returns current date, format: 2009-12-31
this.date = function()
{
var date = new Date();
return date.getFullYear() + '-' +
(date.getMonth() < 9 ? '0' : '') + (date.getMonth()+1) + '-' +
(date.getDate() < 10 ? '0' : '') + date.getDate();
}
return null;
}).apply(metaTitleDescriptionOnTop);